home *** CD-ROM | disk | FTP | other *** search
- #ifndef EDTIMECH_H
- #define EDTIMECH_H
- //===================================================================================
- //
- // File: EdTimeCh.h
- // Release Version: $Revision$
- //
- // COPYRIGHT 1993 SYMANTEC CORPORATION. ALL RIGHTS RESERVED. UNPUBLISHED RIGHTS
- // RESERVED UNDER THE COPYRIGHT LAWS OF THE UNITED STATES. USE OF COPYRIGHT
- // NOTICE IS PRECAUTIONARY ONLY AND DOES NOT IMPLY PUBLICATION OR DISCLOSURE.
- //
- // THIS SOFTWARE CONTAINS PROPRIETARY AND CONFIDENTIAL INFORMATION OF SYMANTEC
- // CORPORATION. USE, DISCLOSURE, OR REPRODUCTION IS PROHIBITED WITHOUT THE PRIOR
- // EXPRESS WRITTEN PERMISSION OF SYMANTEC CORPORATION.
- //
- // RESTRICTED RIGHTS LEGEND
- // Use, duplication, or disclosure by the Government is subject to restrictions
- // as set forth in subparagraph (c)(l)(ii) of the Rights in Technical Data and
- // Computer Software clause at DFARS 252.227-7013.
- // Symantec Corporation, 10201 Torre Avenue, Cupertino, CA 95014.
- //
- //===================================================================================
-
- #ifndef EDSTATBR_H
- #include "EDStatBr.h"
- #endif
-
- #ifndef BRCHORE_H
- #include <BRChore.h>
- #endif
-
- //-----------------------------------------------------------------------------------
- // class cEdTimerChore
- //
- // This class displays the current time on the status bar every second.
- //-----------------------------------------------------------------------------------
-
- class cEdTimerChore : public BR_CTimerChore
- {
- public:
- cEdTimerChore(cEdStatusBar *edStatusBar);
- virtual ~cEdTimerChore();
-
- // Overridden methods
- virtual BR_Boolean Do();
-
- BR_SETCLASSNAME(cEdTimerChore);
- } ;
-
- #endif
-